.fightarea {
    display: flex;
    gap: 20px;
}

#char, #monster {
    flex: 1;
}

.lifebar {
    height: 10px;
    border: 1px solid #333;
    border-radius: 5px;
}

.lifebar .bar{
    height: inherit;
    background-color: red;
    border-radius: 5px;
}

.log {
    border: 3px dotted #999;
    overflow-y: scroll;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0;
    
    width: 100%;
    height: 100px;
    
    list-style: none;
    text-align: center;
    padding: 10px;
}

.iframe {
    margin: 100px;
    display: flex;
    justify-content: center;
}